projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38e7674
)
(srandom): Pass arg to srand48; no return value.
author
Karl Heuer
<kwzh@gnu.org>
Mon, 5 Sep 1994 00:13:01 +0000
(
00:13
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Mon, 5 Sep 1994 00:13:01 +0000
(
00:13
+0000)
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index 004a0b95676cfda9d2e80053b0a530bf593d3f2d..e670958289ff40b602f6e3d003d87ddc20d78f81 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-2633,7
+2633,7
@@
srandom (arg)
int arg;
{
#ifdef HAVE_LRAND48
-
return srand48 (
);
+
srand48 (arg
);
#else
srand (arg);
#endif